home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 376_04 / os2tool.003 / VERSION.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-02  |  622 b   |  25 lines

  1. /*
  2. * VERSION.C - Shows version information.
  3. *
  4. * PROGRAMMER:        Martti Ylikoski
  5. * CREATED:        7.7.1992
  6. */
  7. static char *VERSION="Version  1.0. Copyright(c) Martti Ylikoski, 1992. " ;
  8. /*
  9. */
  10.  
  11. #include <stdio.h>
  12. #include <string.h>
  13. int main(int argc, char *argv[])
  14. {
  15.    printf("\n\nThis is TOOLS/2 version 1.1 - dated 2. October 1992. \n\n\n") ;
  16.    printf("Send your friendly bug report(s) to:\n\n") ;
  17.    printf("   Martti Ylikoski\n") ;
  18.    printf("   Poutuntie 3 A 7\n") ;
  19.    printf("   SF-00400 Helsinki\n") ;
  20.    printf("   Finland\n\n\nThank You for using TOOLS/2.\n\n\n") ;
  21.    return( 0 ) ;
  22. }
  23.  
  24.